home *** CD-ROM | disk | FTP | other *** search
Text File | 1991-07-01 | 3.3 KB | 108 lines | [TEXT/MPS ] |
- ; File: E16.TextEdit
- ;
- ;
- ; Copyright Apple Computer, Inc. 1986-90
- ; All Rights Reserved
- ;
- ;
- teAlreadyStarted GEQU $2201
- teNotStarted GEQU $2202
- teInvalidHandle GEQU $2203
- teInvalidVerb GEQU $2204
- teInvalidFlag GEQU $2205
- teInvalidPCount GEQU $2206
- teInvalidRect GEQU $2207
- teBufferOverflow GEQU $2208
- teInvalidLine GEQU $2209
- teInvalidCall GEQU $220A
- NullVerb GEQU $0000
- PStringVerb GEQU $0001
- CStringVerb GEQU $0002
- C1InputVerb GEQU $0003
- C1OutputVerb GEQU $0004
- HandleVerb GEQU $0005
- PointerVerb GEQU $0006
- NewPStringVerb GEQU $0007
- fEqualLineSpacing GEQU $8000
- fShowInvisibles GEQU $4000
- teInvalidDescriptor GEQU $2204
- teInvalidParameter GEQU $220B
- teInvalidTextBox2 GEQU $220C
- teNeedsTools GEQU $220D
- teEqualLineSpacing GEQU $8000
- teShowInvisibles GEQU $4000
- leftJust GEQU $0000
- rightJust GEQU $FFFF
- centerJust GEQU $0001
- fullJust GEQU $0002
- noTabs GEQU $0000
- stdTabs GEQU $0001 ; Tabs every tabTerminator pixels
- absTabs GEQU $0002 ; Tabs at absolute location specified by theTabs array
- fCtlInvis GEQU $0080
- fRecordDirty GEQU $0040
- teLeftTab GEQU $0000
- teCenterTab GEQU $0001
- teRightTab GEQU $0002
- teDecimalTab GEQU $0003
- fNotControl GEQU $80000000 ; TextEdit record is not a control
- fSingleFormat GEQU $40000000 ; Only one ruler is allowed for record
- fSingleStyle GEQU $20000000 ; Only one style is allowed for record
- fNoWordWrap GEQU $10000000 ; No word wrap is performed
- fNoScroll GEQU $08000000 ; The text cannot scroll
- fReadOnly GEQU $04000000 ; The text cannot be edited
- fSmartCutPaste GEQU $02000000 ; Record supports intelligent cut and paste
- fTabSwitch GEQU $01000000 ; Tab key switches user to next TextEdit record on the screen
- fDrawBounds GEQU $00800000 ; TextEdit draw a box around text
- fColorHilight GEQU $00400000 ; Use color table for highlighting
- fGrowRuler GEQU $00200000 ; Adjust right margin whenever window size changes
- fDisableSelection GEQU $00100000 ; User cannot select or edit text
- fDrawInactiveSelection GEQU $00080000 ; TextEdit displays a box around an inactive selection
- teCtlColorIsPtr GEQU $0000
- teCtlColorIsHandle GEQU $0004
- teCtlColorIsResource GEQU $0008
- teCtlStyleIsPtr GEQU $0000
- teCtlStyleIsHandle GEQU $0001
- teCtlStyleIsResource GEQU $0002
- teRefIsPtr GEQU $0000
- teRefIsHandle GEQU $0001
- teRefIsResource GEQU $0002
- teRefIsNewHandle GEQU $0003
- teDataIsPString GEQU $0000
- teDataIsCString GEQU $0001
- teDataIsC1Input GEQU $0002
- teDataIsC1Output GEQU $0003
- teDataIsTextBox2 GEQU $0004
- teDataIsTextBlock GEQU $0005
- teTextIsPtr GEQU $0000
- teTextIsHandle GEQU $0008
- teTextIsResource GEQU $0010
- teTextIsNewHandle GEQU $0018
- fLeaveError GEQU $0000 ; Leave the last error code intact
- fClearError GEQU $FFFF ; Clear the last error code
- teInvis GEQU $4000
- tePartialLines GEQU $8000
- teDontDraw GEQU $4000
- teUseFont GEQU $0020
- teUseSize GEQU $0010
- teUseForeColor GEQU $0008
- teUseBackColor GEQU $0004
- teUseUserData GEQU $0002
- teUseAttributes GEQU $0001
- teReplaceFont GEQU $0040
- teReplaceSize GEQU $0020
- teReplaceForeColor GEQU $0010
- teReplaceBackColor GEQU $0008
- teReplaceUserField GEQU $0004
- teReplaceAttributes GEQU $0002
- teSwitchAttributes GEQU $0001
- doEraseRect GEQU $0001
- doEraseBuffer GEQU $0002
- doRectChanged GEQU $0003
- doKeyStroke GEQU $0004
- teScrollAbsTop GEQU $0000
- teScrollAbsCenter GEQU $0001
- teScrollLineTop GEQU $0002
- teScrollLineCenter GEQU $0003
- teScrollAbsUnit GEQU $0004
- teScrollRelUnit GEQU $0005
-